projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6b2e9ef
)
(calculate-perl-indent): When indenting under a
author
Richard M. Stallman
<rms@gnu.org>
Tue, 8 Apr 1997 01:18:14 +0000
(
01:18
+0000)
committer
Richard M. Stallman
<rms@gnu.org>
Tue, 8 Apr 1997 01:18:14 +0000
(
01:18
+0000)
containing openparen, skip spaces after the openparen.
lisp/progmodes/perl-mode.el
patch
|
blob
|
history
diff --git
a/lisp/progmodes/perl-mode.el
b/lisp/progmodes/perl-mode.el
index 67a439da655d7b770b34872832f0f4fa0bdd5404..0ea19973ce1426fbcd5ad0fd3897b6b557cdba9d 100644
(file)
--- a/
lisp/progmodes/perl-mode.el
+++ b/
lisp/progmodes/perl-mode.el
@@
-516,6
+516,7
@@
Returns (parse-state) if line starts inside a string."
;; line is expression, not statement:
;; indent to just after the surrounding open.
(goto-char (1+ containing-sexp))
+ (skip-chars-forward " \t")
(current-column))
(t
;; Statement level. Is it a continuation or a new statement?